from_bytes_unsigned

pure static function from_bytes_unsigned(value: byte_array): big_integer

Create a big_integer from a byte array.

The byte array is interpreted with more significant bits on the left and less significant bits on the right (big-endian). An empty byte array is interpreted as 0.

Inverse of big_integer.to_bytes_unsigned().

Since

0.12.0

Parameters

value

the byte array to convert